home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / fontconfig-config.postrm < prev    next >
Text File  |  2008-09-18  |  436b  |  25 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. CONF=/etc/fonts/local.conf
  6.  
  7. case "$1" in
  8.     purge)
  9.         if [ -x /usr/bin/ucf ]; then
  10.         ucf --purge $CONF
  11.         fi
  12.         rm -f $CONF
  13.         rm -rf /etc/fonts/conf.d
  14.         rmdir /usr/local/share/fonts 2>/dev/null || true
  15.         ;;
  16. esac
  17.  
  18. # Automatically added by dh_installdebconf
  19. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  20.     . /usr/share/debconf/confmodule
  21.     db_purge
  22. fi
  23. # End automatically added section
  24.  
  25.